/* ===== COLOR VARIABLES ===== */
:root {
  --gold: #D4AF37;
  --gold-dark: #B8962E;
  --black: #0B0B0B;
  --gray: #1A1A1A;
  --text-light: #CCCCCC;
}

/* ===== GLOBAL ===== */
body {
  background: var(--black);
  font-family: 'Inter', sans-serif;
  padding-top: 80px; /* Account for fixed navbar */
  margin: 0;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 1rem 2rem;
}

h2, h3, h4 {
  color: var(--gold);
}

.section {
  padding: 3rem 2rem;
  text-align: center;
  margin: 0 auto;
  min-height: auto;
  clear: both;
  position: relative;
}

.section + .section {
  margin-top: 0;
}

.section.dark {
  background: #000;
}

.disclaimer {
  margin-top: 0;
  padding-top: 1rem;
}

/* ===== NAVBAR ===== */
.navbar {
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid var(--gold);
  padding: 0.8rem 0;
  min-height: 60px;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  position: fixed;
  z-index: 1000;
}

.navbar .container {
  max-width: 1400px;
  margin: auto;
  padding: 0 1rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links li {
  margin-left: 0;
  white-space: nowrap;
}

.nav-links a {
  color: white;
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

/* ===== HERO ===== */
.hero {
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('banner.jpeg') center/cover no-repeat;
  position: relative;
  margin-top: 0;
  padding-top: 0;
}

.hero-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  z-index: 1;
  filter: brightness(1.2);
}

.hero > div {
  position: relative;
  z-index: 2;
}

.hero > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero h2 {
  font-size: 3rem;
}

.hero-logo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin-bottom: 2rem;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.8));
}

.hero p {
  max-width: 600px;
  margin: 1.5rem auto;
  color: var(--text-light);
  font-size: 1.3rem;
  font-weight: 600;
}

/* ===== BUTTON ===== */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: black;
  padding: 0.8rem 2rem;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
}

.btn-gold:hover {
  background: var(--gold-dark);
}

/* ===== DISCLAIMER ===== */
.disclaimer {
  padding: 0.8rem;
  background: black;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ===== GRID SYSTEM ===== */
.grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.grid-3, .grid-4 {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* ===== CARD ===== */
.card {
  border: 1px solid var(--gold);
  padding: 2rem;
  border-radius: 10px;
  background: var(--gray);
}

/* ===== LIVE CHART ===== */
.chart-box {
  max-width: 1100px;
  margin: auto;
  border: 1px solid var(--gold);
  border-radius: 12px;
  overflow: hidden;
  background: black;
}

.tradingview-widget-container {
  border-bottom: 2px solid var(--gold);
}

/* ===== TABLE ===== */
table {
  width: 100%;
  margin-top: 1rem;
}

td {
  padding: 0.6rem 0;
}

.gold {
  color: var(--gold);
}

.loss {
  color: #ff6b6b;
}

.profit {
  color: #4cd964;
}

/* ===== CONTACT ===== */
.contact-form {
  max-width: 500px;
  margin: auto;
  display: grid;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  background: var(--black);
  border: 1px solid var(--gold);
  color: white;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 1rem;
  border-top: 1px solid var(--gold);
  color: var(--text-light);
  font-size: 0.8rem;
}
